home *** CD-ROM | disk | FTP | other *** search
- VERSION 4.00
- Begin VB.Form frmNameEntry
- BorderStyle = 3 'Fixed Dialog
- Caption = "Enter Your Name"
- ClientHeight = 2925
- ClientLeft = 1335
- ClientTop = 1785
- ClientWidth = 4275
- ControlBox = 0 'False
- Height = 3330
- Left = 1275
- LinkTopic = "Form2"
- MaxButton = 0 'False
- MinButton = 0 'False
- ScaleHeight = 2925
- ScaleWidth = 4275
- ShowInTaskbar = 0 'False
- Top = 1440
- Width = 4395
- Begin VB.TextBox txtName
- BeginProperty Font
- name = "MS Sans Serif"
- charset = 0
- weight = 400
- size = 13.5
- underline = 0 'False
- italic = 0 'False
- strikethrough = 0 'False
- EndProperty
- Height = 495
- Left = 240
- TabIndex = 2
- Top = 840
- Width = 3855
- End
- Begin VB.Label lblName
- Caption = "Your Name:"
- BeginProperty Font
- name = "MS Sans Serif"
- charset = 0
- weight = 400
- size = 13.5
- underline = 0 'False
- italic = 0 'False
- strikethrough = 0 'False
- EndProperty
- Height = 375
- Left = 240
- TabIndex = 3
- Top = 360
- Width = 1695
- End
- Begin TegoxLib.TegoX TegoX1
- Cancel = -1 'True
- Height = 1170
- Left = 2880
- TabIndex = 1
- Top = 1560
- Width = 1185
- _version = 65536
- _extentx = 2090
- _extenty = 2064
- _stockprops = 1
- End
- Begin TegochkLib.TegoCheck TegoCheck1
- Default = -1 'True
- Height = 1155
- Left = 240
- TabIndex = 0
- Top = 1560
- Width = 1410
- _version = 65536
- _extentx = 2487
- _extenty = 2037
- _stockprops = 1
- End
- Attribute VB_Name = "frmNameEntry"
- Attribute VB_Creatable = False
- Attribute VB_Exposed = False
- Private Sub Form_Activate()
- txtName.Tag = txtName.TEXT
- txtName.SetFocus
- End Sub
- Private Sub TegoCheck1_Click()
- Me.Hide
- End Sub
- Private Sub TegoX1_Click()
- txtName.TEXT = txtName.Tag
- Me.Hide
- End Sub
-